home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / gnu / smaltalk.lha / smalltalk-1.1.1 / test / run-regression-tests < prev    next >
Text File  |  1991-09-12  |  434b  |  17 lines

  1. #!/bin/csh -f
  2.  
  3. ######################################################################
  4. #
  5. # Copyright (C) 1988, 1989  Steven B. Byrne.
  6. # All rights reserved.
  7. #
  8. ######################################################################
  9.  
  10. set testSuite = (class blocks array strings chars intmath floatmath)
  11.  
  12. foreach test ($testSuite)
  13.     echo "Testing ${test}..."
  14.     ../mst -r ${test}.st >& ${test}.log
  15.     diff ${test}.base ${test}.log
  16. end
  17.